SchedulerQueue() constructor¶
Defined in
Type: SchedulerQueueSystem.Reactive.Concurrency
Assembly: System.Reactive.dll
Applies to
netstandard2.0
Overloads¶
- 1.
public SchedulerQueue() - 2.
public SchedulerQueue(int capacity)
1. Overload¶
public SchedulerQueue()
Summary: Creates a new scheduler queue with a default initial capacity.
2. Overload¶
public SchedulerQueue(int capacity)
Summary: Creates a new scheduler queue with the specified initial capacity.
Parameters
| Name | Type | Description |
|---|---|---|
capacity | int | Initial capacity of the scheduler queue. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentOutOfRangeException | capacity is less than zero. |